home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 19
/
CD_ASCQ_19_010295.iso
/
dos
/
prg
/
pas
/
swag
/
crt.swg
/
0012_Enable Blink-NOBLINK.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-09-26
|
566b
|
17 lines
{****************************************************************************
* Procedure ..... SetBlink;
* Purpose ....... To enable blinking vice intensity
* Parameters .... None
* Returns ....... Nothing
* Notes ......... Colors with the background attribute high-bit set will
* blink.
* Author ........ Martin Richardson
* Date .......... October 28, 1992
****************************************************************************}
PROCEDURE SetBlink; ASSEMBLER;
ASM
MOV AX, 1003h
MOV BL, 01h
INT 10h
END;